-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert inline callbacks to async/await #368
Conversation
This reverts commit 75fa590.
Signed-off-by: H.Shay <shaysquared@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, but the request
method needs to be rethought.
Hmm I'm not entirely sure why the github actions run-matrix-is-tests (3.x) is failing-the buildkite tests passed and the tests are passing locally using both python 3.8 and 3.6. Looking at the details it seems to be some sort of connection error, I'm not sure the problem is in the code I'm pushing... |
Maybe sydent failed to start for some reason? I re-ran the jobs we'll see what happens. |
Looks like that worked! Thanks! |
This PR converts some files in sydent to use async/await. I removed the references to the return type
Generator
in the affected functions but didn't add the new return types, I figured that should go in a seprate PR to ease review.